Package com.serotonin.m2m2.virtual.rt

Source Code of com.serotonin.m2m2.virtual.rt.RandomMultistateChangeRT

/*
    Copyright (C) 2014 Infinite Automation Systems Inc. All rights reserved.
    @author Matthew Lohbihler
*/
package com.serotonin.m2m2.virtual.rt;

import com.serotonin.m2m2.rt.dataImage.types.DataValue;
import com.serotonin.m2m2.rt.dataImage.types.MultistateValue;
import com.serotonin.m2m2.virtual.vo.RandomMultistateChangeVO;

public class RandomMultistateChangeRT extends ChangeTypeRT {
    private final RandomMultistateChangeVO vo;

    public RandomMultistateChangeRT(RandomMultistateChangeVO vo) {
        this.vo = vo;
    }

    @Override
    public DataValue change(DataValue currentValue) {
        int newValue = RANDOM.nextInt(vo.getValues().length);
        return new MultistateValue(vo.getValues()[newValue]);
    }
}
TOP

Related Classes of com.serotonin.m2m2.virtual.rt.RandomMultistateChangeRT

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.